In [9]:
import numpy as np
In [11]:
output = np.arccos(3/5)
In [12]:
np.degrees(output)
Out[12]:
In [15]:
(np.degrees(output) * 2 ) + 90
Out[15]:
In [17]:
output = np.arcsin(3/5)
In [18]:
np.degrees(output)
Out[18]:
In [19]:
36.869+53.130+90
Out[19]:
In [20]:
output = np.sqrt(5**2 + 3**2)
In [21]:
output
Out[21]:
In [ ]: